home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / tcshsrc.zoo / tcsh / Fixes < prev    next >
Encoding:
Text File  |  1991-08-06  |  14.9 KB  |  356 lines

  1. V6.00.02, 08/05/91 [For comp.sources.unix]
  2. 8.  tcsh will always set $LOGNAME and $USER if not already set in the
  3.     environment.
  4. 7.  added $histfile.
  5. 6.  echo `echo` * and  echo ~ {} were broken
  6. 5.  setty builtin addition
  7. 4.  Multiple : modifiers [experimental, disabled with -DCOMPAT]
  8. 3.  7 bit fixes, and hp9000s500.
  9. 2.  #undef DEBUG in tc.alloc.c, so we continue if we get a bad free() 
  10. 1.  getn() is now protected against NULL strings.
  11.  
  12. V6.00.01, 07/16/91
  13. 17. added beepcmd, and fixed small tenematch bugs.
  14. 16. Renamed DUP2 flag to HAVEDUP2 cause AIXPS2 defines DUP2 already.
  15. 15. More ANSI fixes, and mit additions (load-average)
  16. 14. don't clear ECHOE, background programs might need it.
  17. 13. Refresh bug fix...
  18. 12. getpwent() should not be interrupted (yellow pages), cause it might
  19.     leave dangling pointers, that endpwent() will trash.
  20. 11. ChangeSize is now responsible to set the screen size to something
  21.     sane, but it should not affect the environment if the information
  22.     it received is not valid
  23. 10. Find out if we are running under emacs using $TERM. It is more 
  24.     reliable.
  25. 9.  tcsh was broken if SHORT_STRINGS was not defined (glob() problem)
  26. 8.  If GetSize() fails it should always return reasonable screen sizes.
  27. 7.  globbing should not fail if one or more patterns match.
  28. 6.  increased the number of aliases in the loop detection code.
  29. 5.  DGUX has size_t and pid_t defined now...
  30. 4.  ESIX does not have EWOULDBLOCK or EAGAIN & POSIX... That was not handled
  31.     correctly.
  32. 3.  rs6000 needs BSDWAIT.
  33. 2.  Hpux susp key could not be changed.
  34. 1.  Apollo fixes.
  35.  
  36. V6.00.00, 07/04/91
  37. 45. Fixed quoting of VSTART/VSTOP on termios
  38. 44. Memory leak every time you pipe in or out.
  39. 43. echo {foo bar.[ch]}. Did not check for end of word.
  40. 42. ANSI prototypes
  41. 41. dmove() would leave the source descriptor open when using dup2()
  42.     e.g.
  43.     while (1)
  44.     echo foo >>! bar
  45.     end
  46.     runs out of file descriptors
  47. 40. recursive `` expanded via aliases would abort.
  48. 39. set home=../relative-path-name was broken.
  49.     e.g.
  50.     set home=../..; cd ..;
  51.     <abort>
  52. 38. Incorrect error when changing to directory:
  53.     e.g.
  54.     mkdir not-in-cd-path; chmod -x not-in-cd-path; cd not-in-cd-path;
  55.     echoed:
  56.        not-in-cd-path: No such file or directory.
  57.     it should have said
  58.        not-in-cd-path: Permission denied.
  59. 37. if ( \! =~ [\!] ) echo ok, did not echo ok. Quoting inside [] pattern.
  60. 36. More than 127 jobs caused job # to go negative
  61. 35. unsetenv <pattern> ... Added support for more than one pattern.
  62. 34. More background process status report fixes.
  63. 33. Apollo builtin support.
  64. 32. Glob fix. echo '*' * was not handled properly.
  65. 31. Glob fix. setenv FOO `sleep 1` would either cause a segmentation fault.
  66.     or print ambiguous.
  67. 30. Glob fix. Quoted characters inside [] were not handled properly.
  68. 29. Removed TELL and VMUNIX defines. I think we cannot compile on V6 anyway
  69. 28. Overflow check for expansions.
  70. 27. Added matchbeep, shell pattern history searching.
  71. 26. Added code to handle /dev/std{in,out,err}
  72. 25. Fixed POSIX speed handling in raw mode.
  73. 24. Fixed a flushing bug in the filec code in sh.file.c
  74. 23. Compiled and added hp9000s700 to the list of hosts.
  75. 22. Fixed horrible bug in gmatch() 
  76.     switch (4)
  77.     case [a-z]:
  78.         echo bug;
  79.         breaksw;
  80.     case 4:
  81.         echo ok;
  82.         breaksw;
  83.     endsw
  84. 21. Fixes for _SEQUENT_ ut_host.
  85. 20. FLUSHO added
  86. 19. mkdir foo\`bar; cd foo\`bar; was broken
  87. 18. EWOULDBLOCK == EAGAIN on RENO check for that too.
  88. 17. Dword() simplified and removed the gotos.
  89. 16. Hpux now compiles with POSIX. Moved the local chars modes in ed.init.c
  90.     after the tty modes.
  91. 15. Process group fixes for POSIX
  92. 14. We need <sys/filio.h> on the suns for FIOCLEX!!! We did not close
  93.     our file descriptors before...
  94. 13. A/UX fixes.
  95. 12. History events that start with a number are not necessarily numeric:
  96.     > !3d
  97.     3d: Event not fount
  98. 11. History loop detection added.
  99.     > alias a \!#
  100.     > b; a
  101. 10. Alias loop detection code was ineffective on eager optimizers.
  102.  9. All errors should now go through our table. Next step we should
  103.     add nls error messages.
  104.  8. Unsetenv now globs its arguments! Before it did not...
  105.  7. Added tilde cache and -l flag.
  106.  6. Added autocorrect
  107.  5. Fixed for so that background jobs in scripts get process groups
  108.  4. Fixed amazing memory leak in setenv()...
  109.  3. Added short2qstr() so that we can form quoted strings to be used with glob()
  110.  2. str2short and short2str allocate space dynamically.
  111.  1. Fixed bug related to the is*() routines called with shorts.
  112.     [only if NLS and SHORT_STRINGS are defined].
  113.     (The _ctype_ was getting indexed with shorts...)
  114.  0. Complete overhaul. Brought in the 4.4 csh stuff. Separated most
  115.     tcsh and csh code except where I would have to add more global
  116.     variables. Compiled correctly with both lint and gcc -Wall on
  117.     a sparc running 4.1
  118.  
  119. V5.20.03, 03/20/91.    - Never released
  120. 25. Kanji, SXA additions.
  121. 24. (exec foo) should not fail if they are suspended jobs.
  122. 23. Support kernel paging stuff on aix 370.
  123. 22. Now we handle correctly the environment variables LINES, COLUMNS,
  124.     TERMCAP for window size changes...
  125. 21. Tcsh 5.18c+ had broken NULL chars on scripts.
  126.     > cat > foo 
  127.     #!/usr/local/bin/tcsh -f
  128.     echo "foo"
  129.     echo "^V^@"
  130.     echo "bar"
  131.     ^D
  132.     > chmod +x foo; foo
  133.     foo
  134. 20. Posix has EAGAIN and not EWOULDBLOCK
  135. 19. Don't set ECHOK; makes kill ^U ugly.
  136. 18. $shell is SHELLPATH and not $SHELL any more.
  137. 17. Added -n flag to cd, pushd, popd and dirs. Documented -l and -v
  138.     flags.
  139. 16. Documented and fixed chase_symlinks and ignore_symlinks.
  140. 15. Call endpwent() when you get interrupted...
  141.     cd ~chri<tab>^C
  142.     cd ~christos/<enter>
  143.     <stuck>
  144. 14. Exec when you have suspended jobs asks for verification.
  145. 13. Variable length fixes:
  146.     >set abcdefghijklmnopqrstuvwxyz=1
  147.     >echo $abcdefghijklmnopqrstuvwxyz
  148.     abcdefghijklmnopqrs: Undefined variable
  149.     Now we have better messages too...
  150. 12. Icon fixes...
  151. 11. Quote expanded glob and history chars too.
  152. 10. If someone sets SHIN to O_NDELAY we died... Now we set it back...
  153.  9. unset path; unsetenv PATH; ls-F; (poof) fixed...
  154.  8. Patches for masscomp, and ${var123} lexical analysis fix...
  155.  7. Patch for sunview bug: A partially covered suntool sends SIGWINCH every
  156.     time the text is scrolled, causing annoying redraw effects. Now tcsh
  157.     checks if the size really changed before doing anything.
  158.  6. Interrupt in the middle of cwdcmd, and periodic does not remove the
  159.     aliases.
  160.  5. prompt2 and prompt3 fixes:
  161.     Prompt2 now prints the status of the parser by default.
  162.     Prompt3 can now have the standard prompt escape sequences.
  163.  4. eval file descriptor re-direction fix.
  164.     >set p='w | tail +3'
  165.     >eval $p
  166.     (originally | tail +3 was ignored)
  167.  3. $edit != emacs anymore; it was misleading, 'set edit' enables editing
  168.     'unset edit' disables it.
  169.  2. PERROR define fix. 
  170.  1. irix3.3.1 line discipline fix.
  171.  
  172. V5.20.02, 12/15/90.
  173. 32. /etc/Logout added and merged with /etc/Login flag.
  174. 31. Fixed tty chars in ed.init.c. Some of them were not handled correctly.
  175. 30. Command execution does not leak memory any more, and doing
  176.     ~ four times does not core-dump.
  177. 29. Fixed the notorious csh 'if(' bug (part of the convex fixes)
  178. 28. Intelligent getwd() on startup, and canonicalization.
  179. 27. Intelligent directory stack. Gets updated when $HOME changes.
  180. 26. Directory stack/save-restore additions
  181. 25. Convex Fixes.
  182. 24. Fixed onlret, and echonl getting stuck on svid.
  183. 23. Shouldn't leave tty in raw mode at auto-logout (e.g. when su'ing from a
  184.     csh, this is annoying).
  185. 22. Some users had environment EMACS set to something, and with my bad fix
  186.     at pl 1 found that they didn't have echo... (of course, even before my
  187.     "fix", they didn't have editing...). Anyway, refined the check to be
  188.     for EMACS=t, which is what emacs sets when running a subshell.
  189. 21. kill -CONT %job, would not update the status of the job, but it would
  190.     just restart it.
  191. 20. Sequent fixes.
  192. 19. AIX370 signal and TCF fixes.
  193. 18. fixed ls-F -l, SIGINT problem.
  194. 17. aix on the ps2 does not have strcoll() either.
  195. 16. Bind [A - [D and OA to OD in vi mode to the arrow key functions
  196.     so that they work from insert mode.
  197. 15. %~ was not working correctly for /home/news and /home/newsbin...
  198. 14. Removed $Log$ from sources; it was getting too large...
  199. 13. ISC unix fixes.
  200. 12. sunos3.x wants <sys/dir.h> not <dirent.h>
  201. 11. Remove precmd's, cwdcmd's and periodic cmds that had errors.
  202. 10. Compile sunos4.1 using termio. 
  203.  9. Rs6000 line discipline fixes. 
  204.  8. T_Tabs was wrong for termio machines.
  205.  7. Don't bind single keystroke arrow keys, when they are already bound!
  206.  6. Test for newline and tab before deciding not to send shell scripts
  207.     to the bourne shell.
  208.  5. Added LITERAL prompt stuff.
  209.  4. Fixed gethostname() in sh.rest.c to return the nodename.
  210.  3. Do not quote spell checked stuff. This is not very intelligent but
  211.     works better than before.
  212.  2. Fixes for relative path components. (paths that start with a .)
  213.  1. Fixed so that Rawmode() is not called when we are not editing
  214.     (breaks running under emacs)
  215.  
  216. V5.20.01, 11/15/90.
  217. 12. Recognize environment variables too.
  218. 11. Always start in Rawmode()
  219. 10. don't try to execute binary files using the bourne shell.
  220.  9. Vi change to end of line updates correctly now.
  221.  8. Prompt in continuation lines.
  222.  7. Prompt in if statements fix.
  223.  6. System V ^C works right now.
  224.  5. ^Z works correctly in bindings
  225.  4. Better error messages for variables.
  226.  3. dinit() now is more robust.
  227.  2. Added aux2.0 patches.
  228.  1. Fixed bug with arrow key bindings in ed.screen.c. All the keys
  229.     were bound to up-history!
  230.  
  231. V5.20.00, 11/10/90.
  232. 26. Fixed system V and POSIX time reporting.
  233. 25. Fixed ed.screen.c so that it does not use malloc().
  234. 24. Fixed SIGWINCH on the iris
  235. 23. Fixed ed.screen.c, so that settc works correcly. It used to set
  236.     the termcap with a string that was allocated from the stack!
  237. 22. Fixed listing of commands, where the last command was not checked.
  238. 21. Fixed which command. It did not work for
  239.     \<command>, if command was aliased.
  240. 20. Eliminated CSH4.3 define. You've had enough time to upgrade from 4.2
  241. 19. Fixed GotTermCaps to be called only once.
  242. 18. Added bindkey -r
  243. 17. Attributes were not getting reset correctly.
  244. 16. history -t does not print the time-stamp.
  245. 15. AddXkey, works now for single character xkeys.
  246. 14. filetype() knows better about symlinks.
  247. 13. ls-F works with filenames that have metachars
  248. 12. Completion/spelling works with quoted things.
  249. 11. Fixed refresh bug. Repeat by:
  250.     On an intelligent terminal that has insert and delete chars (xterm)
  251.     > orphan
  252.     > vi orphan.c
  253.     > ^P^P
  254. 10. Fixed so that if we don't have a tty on stdin editing is disabled.
  255.  9. Check for nested process forking, to avoid loops such as:
  256.     > alias foo 'set bar=`foo`'
  257.     > foo
  258.  8. Fix setting of AsciiOnly (Per)
  259.  7. tw.spell.c, defined F_OK for systems that don't have it.
  260.  6. ourwait.h had typo in ifdef.
  261.  5. BSD compilers need a cast to int for enums used in 
  262.     switches (Matthew Day)
  263.  4. Found the cause for the core-dump in long backquote 
  264.     expansions (Mark Davies)
  265.  3. Some externs in ed.h needed to be truly externs...
  266.     reported by Mark Davies, bug appeared only on hp9000s800.
  267.  2. Changed $tcsh, and $version strings.
  268.  1. Added internal sprintf function, renamed putchar to CSHputchar,
  269.     printf to CSHprintf, sprintf to CSHsprintf.
  270.  
  271. V5.19.02, 10/23/90.
  272. 36. Added /etc/cshrc for the SGI irises.
  273. 35. Added expand-variables function.
  274. 34. Documented $time in tcsh.man
  275. 33. Shell variables are now 'recognized' when expanding/listing things.
  276. 32. ls-F does not eat the last slash on the / directory!
  277. 31. Strings bound to keys are printed inside double quotes.
  278. 30. History now remembers the exact line, not just an unparsed version of
  279.     the tokens.
  280. 29. Renamed itoa to Itoa(), so things in libc that use itoa() don't break.
  281. 28. Ported to IBM aix/ps2. 
  282. 27. Fixed eval so that it forks when the output is piped
  283.     Repeat by:
  284.     > who | grep $user
  285.     > eval who | grep $user
  286. 26. Fixed so that 'nice <builtin changing the working directory>' does not
  287.     nice or fork.
  288.     Consider doing:
  289.     nice cd /tmp && rm *.c (don't try it!!!)
  290.     [what actually happens is that nice has to fork, then the child executes
  291.      chdir, and the parent stays where it was]
  292. 25. Added Dan's patches (nls, builtin bindkey, fixes to the editor).
  293. 24. Added aix370, migrate, getspath, getspath, getxvers, setxvers
  294. 23. Added builtin echotc, removed sl and el.
  295. 22. Ported to 4.4 BSD. This involved changing the way lots of flags worked,
  296.     cleanup of the SVID stuff, and addition of more compilation flags.
  297.     Now POSIX can work whed BSD is defined...
  298. 21. Fixed so that el, sl work. Actually they are to be removed soon and
  299.     be replaced with echotc.
  300. 20. Avoid the Quoted Space hack for alias when printing jobs!
  301.     [aliases to the same name avoid further alias expansion, by 
  302.      inserting a quoted space in front of the command. In SHORT_STRINGS
  303.      QUOTE is the 15th bit so print ignores it thinking it is the
  304.      end of the string. So we just skip the Quoted Space....]
  305.     Repeat by:
  306.     > set notify
  307.     > alias ls ls -F
  308.     > (ls) &
  309.     Prints        Exit 0 (
  310.     Should print: Exit 0 ( ls -F )
  311. 19. Fixed so that "", '', ``, all produce ': Command not found',
  312.     and not the spurious messages.
  313.     Repeat by:
  314.     > set path = (/bin /usr/bin .... .)
  315.     > ""
  316.     /some/path/name/: Command not found
  317. 18. Enable the use of <ctype.h> macros if they exist and NLS is defined.
  318.     NLS code is not ready yet.
  319. 17. Fixed rmstar and continue_jobs code, so that they are not compile
  320.     options, but shell variables. Now you need to 'set rmstar' to get
  321.     enable rmstar.
  322. 16. Fixed SIGWINCH, SIGWINDOW, and setting of li, co, that broke
  323.     suntools, and others.
  324.     Repeat by:
  325.     Start a shelltool of size other than 80x34
  326.     > telltc
  327.     > stty -a
  328.     do not report the same number of lines and columns.
  329. 15. More fixes to tw.parse.c, and tw.spell.c.
  330. 14. More fixes to sh.char.c.
  331. 13. Fixed coredump caused by ``.
  332. 12. Fixed spell-line code..
  333. 11. Trapped SIGCHLD in sh.sem.c, while forking. Still there is a small
  334.     race, but the probability of happening is smaller!
  335. 10. Fixed sh.char.c to be ISO compliant.
  336.  9. Added expand-glob
  337.  8. Fixed ourwait.h for little endians.
  338.  7. Fixed that foreach i (^D expands correctly.
  339.  6. Fixed so that listmax is ignored in ls-F.
  340.  5. Fixed spelling correction so that single letter words and words that
  341.     contain globbing chars do not get spell checked.
  342.  4. Changed NeXT HOSTTYPE to next, since all HOSTTYPE's are lower case.
  343.  3. Fixed symmetry, and changed symmetry HOSTTYPE from sequent to symmetry.
  344.  2. Added boldfacing, underlining chars.
  345.  1. Added IRIX3.3.1 support.
  346.  
  347. V5.19.01, 9/26/90.
  348. 7. Brought the README file up-to-date, and changed the bug report
  349.    address to point to me.
  350. 6. sh.lex.c. In addla(), overflow computation was wrong.
  351. 5. Fixed SHELLPATH, to be set correctly when $SHELL is not set.
  352. 4. Fixed print statement in sh.proc.c that contained \215.
  353. 3. Fixed the Makefile and MAKEDIFFS so that a tahoe diff can be made.
  354. 2. RS6000: hacked around execv bug, and ed.init.c warning.
  355. 1. Editor should not be enabled when we don't have a tty.
  356.